[Scattered Notes] java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity

随记

Posted by Aerber Zhou on 2016-07-21

关于 java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity 问题

今天晚上在实现界面跳转时发现此报错.

原因:由于我的这个跳转后的页面的功能是其他地方另建的,是由于移植过来出现了问题

解决方法:最后发现是将要跳转的页面继承的activity是APPCompatActivity,并非直接是activity.

讲将要跳转的页面改为继承activity.